说明
该标签显示评论作者的URL(通常即评论者的网站地址)。该标签必须用在WordPress主循环(loop)或评论循环中。
若评论作者未提供URL,则该标签显示当前页面的URL。此时标签get_comment_author_url返回一个空字符串。
用法
<?php comment_author_url(); ?>
示例
显示评论作者的URL链接,以评论作者名作为链接文本的一部分。
<a href="<?php comment_author_url(); ?>">Visit <?php comment_author(); ?>'s site</a>
参数
该标签无参数。
分类:中文手册